home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / ctimetest < prev    next >
Text File  |  1992-02-14  |  99b  |  10 lines

  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. int main()
  5. {
  6. time_t t;
  7.  
  8. time(&t); fputs(ctime(&t),stdout);
  9. }
  10.